home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld: Super Stacks!
/
Macworld CD.iso
/
HyperCard Archives
/
International
/
French v1.2.5.1
/
Piles principales
/
Notes sur la version 1.2.5
/
card_2810.txt
< prev
next >
Wrap
Text File
|
1989-10-04
|
2KB
|
78 lines
-- card: 2810 from stack: in.5
-- bmap block id: 0
-- flags: 0000
-- background id: 5683
-- name: Cursor
-- part contents for background part 7
----- text -----
Cursor
-- part contents for background part 8
----- text -----
set cursor to {iBeam|plus|cross|watch|none|¬
busy|arrow|hand}
-- part contents for background part 10
----- text -----
aucun
-- part contents for background part 11
----- text -----
La propriété Cursor comporte 4 nouveaux synonymes et 4 nouvelles options. Les valeurs iBeam, cross, plus et watch sont respectivement synonymes de 1, 2, 3 et 4.
-- part contents for background part 9
----- text -----
Nouvelles propriétés HyperTalk
Carte 4 sur 6
-- part contents for background part 17
----- text -----
set cursor to iBeam
set cursor to cross
set cursor to plus
set cursor to watch
set cursor to none
set cursor to busy
set cursor to arrow
set cursor to hand
-- part contents for background part 18
----- text -----
on cursorDemo
--affiche le "ballon de plage" pendant l'exécution
put 2 into step
cleanEnter
lock screen
set cursor to busy
repeat with i = 1 to 2 * (the number of cards)
go next card
if i mod step is 0 then
set cursor to busy
end if
end repeat
unlock screen
cleanExit
end cursorDemo
-- part contents for background part 35
----- text -----
Set cursor permet de modifier la forme du pointeur le temps de l'exécution d'une procédure.
Les formes sont les suivantes :
iBeam pointeur en I
plus croix mince
cross croix épaisse
watch montre
none transparent
busy ballon de plage
arrow flèche
hand main
Le pointeur "ballon de plage", qui indique qu'HyperCard est en train d'effectuer une opération prenant un certain temps, pivote de 1/8 tour à chaque fois qu’il est appelé. Il est donc possible de le faire tourner sur lui-même au moyen d’une boucle.